home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
BUSINESS
/
HEM.LZH
/
FRIEND.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-12-28
|
794b
|
29 lines
echo off
if %1.==. goto goodbye
cls
echo.
echo This batch file will make a copy of HEM onto floppy %1
echo.
echo The data files will NOT be transferred ... only the program.
echo.
echo Place a blank formatted diskette into drive %1 and
pause
copy e.exe %1 > nul
copy e.hlp %1 > nul
copy e.doc %1 > nul
copy friend.bat %1 > nul
copy prorun.exe %1 > nul
copy e.set %1 > nul
echo.
echo A fresh copy of the Expense program files have been copied to
echo floppy drive %1. The data files have NOT been copied.
echo.
echo For best results have your friend copy the new files into a
echo new directory on his hard disk.
echo.
echo The first time your friend runs HEM, he will be asked if
echo he wishes to create a new database. Have him answer YES.
echo.
pause
:goodbye